home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * grabber_cdev.h
- *
- * Copyright © 1990 Michael Kahl.
- *
- */
-
- #define _H_grabber_cdev
-
- #include <cdev.h>
- #include "options.h"
-
-
- /* "grabber_cdev" class */
-
- struct grabber_cdev : cdev {
-
- /* instance variables */
- struct opt *opt;
-
- /* overridden methods */
- void Init(void); /* "initDev" */
- void ItemHit(int); /* "hitDev" */
-
- /* new methods */
- ControlHandle GetCheckBox(int);
- };
-